From b9ca214b2d6772331c06e3cd56e55966f1926f89 Mon Sep 17 00:00:00 2001 From: "smh22@firebug.cl.cam.ac.uk" Date: Tue, 2 Aug 2005 11:34:38 +0000 Subject: [PATCH] Disable build of pygrub for now - does not build with e2fsprogs-1.35 Signed-off-by: Steven Hand --- .hgignore | 4 ++-- tools/Makefile | 2 +- tools/pygrub/src/fsys/ext2/ext2module.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.hgignore b/.hgignore index 2024edc1f0..247869cdba 100644 --- a/.hgignore +++ b/.hgignore @@ -128,8 +128,8 @@ ^tools/misc/xc_shadow$ ^tools/misc/xen_cpuperf$ ^tools/misc/xenperf$ -^tools/policy/policy_tool$ -^tools/policy/xen/.*$ +^tools/security/secpol_tool$ +^tools/security/xen/.*$ ^tools/pygrub/build/.*$ ^tools/python/build/.*$ ^tools/tests/test_x86_emulator$ diff --git a/tools/Makefile b/tools/Makefile index 5418adf415..917356fedb 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -10,7 +10,7 @@ SUBDIRS += xentrace SUBDIRS += python SUBDIRS += xcs SUBDIRS += xcutils -SUBDIRS += pygrub +#SUBDIRS += pygrub SUBDIRS += firmware SUBDIRS += security diff --git a/tools/pygrub/src/fsys/ext2/ext2module.c b/tools/pygrub/src/fsys/ext2/ext2module.c index 13ce92108d..f5f95a7aa7 100644 --- a/tools/pygrub/src/fsys/ext2/ext2module.c +++ b/tools/pygrub/src/fsys/ext2/ext2module.c @@ -229,8 +229,8 @@ ext2_fs_open (Ext2Fs *fs, PyObject *args, PyObject *kwargs) snprintf(offsetopt, 29, "offset=%d", offset); } - err = ext2fs_file_open2(name, offsetopt, flags, superblock, block_size, - unix_io_manager, &efs); + err = ext2fs_open2(name, offsetopt, flags, superblock, block_size, + unix_io_manager, &efs); if (err) { PyErr_SetString(PyExc_ValueError, "unable to open file"); return NULL; -- 2.30.2